ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / ChartSeriesBase<T> Class / Name Property






In This Topic
    Name Property (ChartSeriesBase<T>)
    In This Topic
    Gets or sets the series name. The series name is displayed in the chart legend. Any series without a name does not appear in the legend.
    Syntax
    'Declaration
     
    
    Public Property Name As System.String
    'Usage
     
    
    Dim instance As ChartSeriesBase(Of T)
    Dim value As System.String
     
    instance.Name = value
     
    value = instance.Name
    public System.string Name {get; set;}
    public read-write property Name: System.String; 
    public function get,set Name : System.String
    public: __property System.string* get_Name();
    public: __property void set_Name( 
       System.string* value
    );
    public:
    property System.String^ Name {
       System.String^ get();
       void set (    System.String^ value);
    }
    See Also